home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
By Popular Request 2.0
/
By Popular Request 2.0 (Arsenal Computer).ISO
/
amiga_4
/
mkwrit57.lha
/
REXX
/
MKOUTCHE.REX
next >
Wrap
OS/2 REXX Batch file
|
1994-05-22
|
544b
|
28 lines
/*
Checks outbound if all is OK
Othervise sends you a netmail
Uses MailWatch
*/
/******************************/
/* Change this for your needs */
myadress='2:203/143.1'
MyName='Mats Kling'
outbound='MAIL:OUTBOUND'
/******************************/
options results
address command 'mailwatch 'outbound' >t:mailcheck'
if rc ~=0 then do
address command 'rx >NIL: mkwrite -fMailwatch -fa'myadress' -t'myname' -ta'myadress' -aMAIL -sSome eroors in outbound found -oMailwatch -tet:mailcheck'
end
address command 'delete >NIL: t:mailcheck'